html, body{
    height: 100%;
    margin: 0;
    background: radial-gradient(black, #010001);
    overflow-x: hidden;
    max-width: 100%;
    font-family: sans-serif;
    color: white;
}
#home-sect {
    display: flex;
    place-items: center;
    align-content: center;
    min-height: 95vh;
    margin: auto;
    justify-content: center;
}
.title .cubes {
    display: inline-block;
}
#title-text {
    font-size: 80px;
    background-image: linear-gradient(60deg, #6893CE, #B943F1);
    background-size: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-color: white; 
}
@keyframes float {
	0% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(15px);
	}
	50% {
		box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);
		transform: translatey(-15px);
	}
	100% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(15px);
	}
}
.cubes {
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    align-items: flex-start;
    padding: 0px 120px 0px 120px;
}
.cube-img { /*.cubes img*/
    display: flex;
    animation: float 5.5s ease-in-out infinite;
    z-index: 0;
}
.cube-img:nth-child(1) { animation-delay: -0.5s }
.cube-img:nth-child(2) { animation-delay: -1.0s }
.cube-img:nth-child(3) { animation-delay: -1.5s }
.cube-img:nth-child(4) { animation-delay: -2.0s }
.cube-img:nth-child(5) { animation-delay: -2.5s }


#issue-sect {
    min-height: 80vh;
    display: inline-flex;
    align-items: center;
    padding: 25px;
    color: white;
}
#issue-sect img{
    width: 600px;
    height: 400px;
    object-fit: cover;
    float: right;
    margin-right: 8%;
    margin-top: 5%;
    border-radius: 15px 15px 15px 15px;
}
.intro-p{
    display: block;
    float: left;
    margin: -50px 10% 0px 10%;
}
.intro-p h1 {
    text-align: center;
}
.intro-p p{
    text-align: center;
    font-size: 20px;
}


#survey {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
#survey div {
    padding: 10px 30px 10px 30px;
}
.purp {
    font-size: 30px;
    background-image: linear-gradient(60deg, #ff89fb, #53189b);
    background-size: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-color: white; 
}
.blue {
    font-size: 30px;
    background-image: linear-gradient(60deg, #68d0f0, #316dc1);
    background-size: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-color: white; 
}
.green {
    font-size: 30px;
    background-image: linear-gradient(60deg, #4be799, #146d91);
    background-size: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-color: white; 
}
.hidden {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(100%);
    transition: all 1s;
}
.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}
.item:nth-child(2) {
    transition-delay: 100ms;
}
.item:nth-child(3) {
    transition-delay: 200ms;
}

footer{
    padding: 40px 0;
    color: white;
    background: black;
}

footer li{
    padding-right: 50px;
    float: right;
    padding: 0 10px;
    list-style: none;
}

footer a{
    color: white;
}
